Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

serve-placeholder

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serve-placeholder

Connect/Express middleware to respond with better placeholders based on request instead of 404 page

  • 1.2.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
590K
decreased by-12.47%
Maintainers
2
Weekly downloads
 
Created
Source

♡ serve-placeholder

Connect/Express middleware to respond with better placeholders based on request instead of 404 page

Standard JS david dm codecov circleci

npm version npm downloads package phobia

Why?

💵 Rendering 404 errors is costly

  • Each 404 error for assets means a new SSR request that adds extra loads to the server and increases crash chances.

👌 Graceful Responses

  • Sometimes, we can send better responses alongside with 404 code instead of nothing. For example, for images, we send a fallback transparent 1x1 image.

🔍 SEO Friendly

  • Don't allow indexing invalid URLs with ugly html pages.
  • Remove extra SSR loads when assets like robots.txt or favicon.ico doesn't exist.

Usage

Install package:

npm install serve-placeholder

OR

yarn add serve-placeholder

Import and use middleware:

const placeholder = require('serve-placeholder')
// import placeholder from 'serve-placeholder'

// [regular middleware such as serve-static]

// Response with appreciate placeholders
app.use(placeholder())
//app.use(placeholder({ /* options */ }))

// [global error handler]

Options

handlers

A mapping from file extensions to the handler. Extensions should start with dot like .js.

You can disable any of the handlers by setting the value to null

If the value of a handler is set to false, middleware will be ignored for that extension.

statusCode

  • Default: 404

Sets statusCode for all handled responses. Set to false to disable overriding statusCode.

skipUnknown

  • Default: false

Skip middleware when no handler is defined for the current request.

Please note that if this option is set to true, then default handler will be disabled!

placeholders

  • Type: Object

A mapping from handler to placeholder. Values can be String or Buffer. You can disable any of the placeholders by setting the value to false.

mimes

  • Type: Object

A mapping from handler to the mime type. Mime type will be set as Content-Type header. You can disable sending any of the mimes by setting the value to false.

noCache

  • Default: true

Set headers to prevent accidentally caching 404 resources.

When enabled, these headers will be sent:

{
  'cache-control': 'no-cache, no-store, must-revalidate',
  'expires': '0',
  'pragma': 'no-cache'
}

Defaults

These are default handlers. You can override every of them using provided options.

HandlerExtensionsMime typePlaceholder
defaultany unknown extension--
css.csstext/css/* style not found */
html.html, .htmtext/html<!-- page not found -->
js.jsapplication/javascript/* script not found */
json.jsonapplication/json{}
map.mapapplication/json[empty sourcemap v3 json]
plain.txt, .text, .mdtext/plain[empty]
image.png, .jpg, .jpeg, .gif, .svg, .webp, .bmp, .icoimage/gif[transparent 1x1 image]

License

MIT. Made with 💖 by Nuxt.js team!

FAQs

Package last updated on 12 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc